c# array display

52

c# array display -

foreach(var item in yourArray)
{
    Console.WriteLine(item.ToString());
}

Comments

Submit
0 Comments